home *** CD-ROM | disk | FTP | other *** search
/ Network CD 2 / Network CD - Volume 2.iso / programs / internet / tcp / amitcp / amitcp-src-22.lha / AmiTCP-2.2 / src / l / inet-handler / c.h < prev    next >
Encoding:
C/C++ Source or Header  |  1993-11-17  |  700 b   |  39 lines

  1. /*
  2.  * c.h
  3.  *
  4.  * Author: Tomi Ollila <too@cs.hut.fi>
  5.  *
  6.  * Copyright (c) 1993 AmiTCP/IP Group, <amitcp-group@hut.fi>
  7.  *                    All rights reserved.
  8.  *
  9.  * Created: Wed Sep 15 14:20:40 1993 too
  10.  * Last modified: Sat Oct 16 16:53:44 1993 too
  11.  *
  12.  * $Id: c.h,v 1.1 1993/10/24 12:50:39 too Exp $
  13.  *
  14.  * HISTORY
  15.  * $Log: c.h,v $
  16.  * Revision 1.1  1993/10/24  12:50:39  too
  17.  * Initial revision
  18.  *
  19.  * Revision 1.1  1993/10/24  12:50:39  too
  20.  * Initial revision
  21.  *
  22.  */
  23.  
  24. #ifndef _C_H_
  25. #define _C_H_
  26.  
  27. /*
  28.  * prototypes
  29.  */
  30. void bzero(char * mem, int len);
  31. #if 0
  32. int  strncasecmp(char *a, char * b, int n);
  33. #endif
  34. int  atoi(char * num);
  35.  
  36. #define isdigit(c) ( (c) >= '0' && (c) <= '9')
  37.  
  38. #endif /* _C_H_ */
  39.